home *** CD-ROM | disk | FTP | other *** search
/ PC go! 2008 April / PCgo 2008-04 (DVD).iso / interface / contents / demoversionen_3846 / 13664 / files / Data1.cab / unit3.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-10-16  |  308 b   |  25 lines

  1. unit Unit3;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;
  7.  
  8. type
  9.   TForm3 = class(TForm)
  10.   private
  11.     { Private declarations }
  12.   public
  13.     { Public declarations }
  14.   end;
  15.  
  16. var
  17.   Form3: TForm3;
  18.  
  19. implementation
  20.  
  21. {$R *.DFM}
  22.  
  23. end.
  24.          
  25.